home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-271.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  74 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12338);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CVE-2002-1320");
  13.  
  14.  name["english"] = "RHSA-2002-271: pine";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   A vulnerability in Pine version 4.44 and earlier releases can cause
  21.   Pine to crash when sent a carefully crafted email.
  22.  
  23.   [Updated 06 Feb 2003]
  24.   Added fixed packages for Advanced Workstation 2.1
  25.  
  26.   Pine, developed at the University of Washington, is a tool for reading,
  27.   sending, and managing electronic messages (including mail and news).
  28.  
  29.   A security problem was found in versions of Pine 4.44 and earlier. In these
  30.   verions, Pine does not allocate enough memory for the parsing and escaping
  31.   of the "From" header, allowing a carefully crafted email to cause a
  32.   buffer overflow on the heap. This will result in Pine crashing.
  33.  
  34.   All users of Pine on Red Hat Linux Advanced Server are advised to
  35.   update to these errata packages containing a patch to version 4.44
  36.   of Pine that fixes this vulnerability.
  37.  
  38.  
  39.  
  40.  
  41. Solution : http://rhn.redhat.com/errata/RHSA-2002-271.html
  42. Risk factor : High';
  43.  
  44.  script_description(english:desc["english"]);
  45.  
  46.  summary["english"] = "Check for the version of the pine packages";
  47.  script_summary(english:summary["english"]);
  48.  
  49.  script_category(ACT_GATHER_INFO);
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  52.  family["english"] = "Red Hat Local Security Checks";
  53.  script_family(english:family["english"]);
  54.  
  55.  script_dependencies("ssh_get_info.nasl");
  56.  
  57.  script_require_keys("Host/RedHat/rpm-list");
  58.  exit(0);
  59. }
  60.  
  61. include("rpm.inc");
  62. if ( rpm_check( reference:"pine-4.44-7.21AS.0", release:"RHEL2.1") )
  63. {
  64.  security_hole(0);
  65.  exit(0);
  66. }
  67.  
  68. if ( rpm_exists(rpm:"pine-", release:"RHEL2.1") )
  69. {
  70.  set_kb_item(name:"CVE-2002-1320", value:TRUE);
  71. }
  72.  
  73. set_kb_item(name:"RHSA-2002-271", value:TRUE);
  74.